home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / Effect.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  62 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Effect.h - this class is inherited by the all effects(Reverb, Echo, ..)
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef EFFECT_H
  24. #define EFFECT_H
  25.  
  26. #include <pthread.h>
  27. #include "../Misc/Util.h"
  28. #include "../globals.h"
  29. #include "../Params/FilterParams.h"
  30.  
  31.  
  32. class Effect{
  33.       public:
  34.  
  35.       virtual ~Effect(){};
  36.       virtual void setpreset(unsigned char npreset){};
  37.       virtual void changepar(int npar,unsigned char value){};
  38.       virtual unsigned char getpar(int npar){return(0);};
  39.       virtual void out(REALTYPE *smpsl,REALTYPE *smpsr){};    
  40.       virtual void cleanup(){};
  41.       virtual REALTYPE getfreqresponse(REALTYPE freq){return (0);};//this is only used for EQ (for user interface)
  42.  
  43.       unsigned char Ppreset;
  44.       REALTYPE *efxoutl;
  45.       REALTYPE *efxoutr;
  46.  
  47.       REALTYPE outvolume;//this is the volume of effect and is public because need it in system effect. The out volume of such effects are always 1.0, so this setting tells me how is the volume to the Master Output only.
  48.  
  49.       REALTYPE volume;
  50.  
  51.       FilterParams *filterpars;
  52.       protected:
  53.  
  54.       int insertion;//1 for insertion effect
  55. };
  56.  
  57. #endif
  58.  
  59.  
  60.  
  61.  
  62.